home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000326_news@columbia.edu _Mon Feb 19 23:16:25 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id XAA15100
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 19 Feb 2001 23:16:25 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id XAA15402
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 19 Feb 2001 23:16:20 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id XAA09904
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 19 Feb 2001 23:15:56 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. Message-ID: <3A91EF77.D5998E55@littlegreenapples.com>
  13. Date: Tue, 20 Feb 2001 12:15:51 +0800
  14. From: Meng Kuan <mengkuan@littlegreenapples.com>
  15. Subject: Does pdial have a maximum length?
  16. Organization: StarHub Internet Pte Ltd
  17. To: kermit.misc@columbia.edu
  18.  
  19. Hi,
  20.  
  21. I am trying to use ckermit to do alphanumeric paging. Where I am from,
  22. the paging operators do not have a TAP/IXO service so I had to do a
  23. manual conversion of the alphanumeric characters to dial-sequences. For
  24. instance, the message 
  25.  
  26. "abcdefghijklmnopqrstuvwxyz" 
  27.  
  28. is converted into
  29.  
  30. "2122233132334142435152536162637172737481828391929394".
  31.  
  32. If I use a shorter message (e.g. "abcdef") there is no problem. However,
  33. if I have a message longer than 17 characters, pdial always truncates it
  34. when it does the actual dialling.
  35. A sample of a failed dialing attempt is included below. Note that the
  36. "Dial string" shown below was not truncated but the pdial command was.
  37. The script that I use is a modified version of alphapage script found
  38. here:
  39.  
  40. ftp://kermit.columbia.edu/kermit/scripts/ckermit/alphapage
  41.  
  42. Some other information about my setup:
  43.  
  44. ckermit version: 7.0.196, 1 Jan 2000, for Linux
  45. server: debian potato on i386 platform
  46.  
  47. I have gone over the online documetation and FAQs but to no avail. If
  48. anyone has any clues for the following questions I will be most
  49. grateful. Is there a maximum length to the number of digits pdial can
  50. dial? If so, how can I increase it? Or are there some other settings
  51. which I missed? 
  52.  
  53. Thanks,
  54. Meng Kuan
  55.  
  56.  
  57. ----------------sample of alphanumeric dial attempt--------------
  58.  
  59.  Number:      "93217086"
  60.  Message:     "2122233132334142435152536162637172737481828391929394"
  61.  Device:      "/dev/ttyS0"
  62.  Speed:       "2400"
  63.  Modem:       "generic-high-speed"
  64.  Redials:     "20"
  65.  Pause:       "0"
  66.  Poundsign:   "0"
  67.  WARNING: This modem is not well-suited for paging.
  68.  Busy signals are not detected and failure is not reported.
  69.  Automatic redialing disabled.
  70.  Dial string:
  71. "9,93217086,,###,2122233132334142435152536162637172737481828391929394**"
  72.  Trying:
  73. T9,93217086,,###,2122233132334142435152536162637172737481828391929394**;...
  74.  Device: /dev/ttyS0, modem: generic-high-speed, speed: 2400
  75.  Dial timeout: 115 seconds
  76.  To cancel: type your interrupt character (normally Ctrl-C).
  77.  Hangup OK
  78.  Initializing: 11:57:06...
  79. ATQ0
  80. ATQ0
  81. OK
  82. AT&F1S11=65
  83. OK
  84. ATM1L2
  85. OK
  86. ATX3
  87. OK
  88. ATS2=43S7=105
  89. OK
  90.  Dialing: 11:57:08...
  91. ATDT9,93217086,,###,2122233132334142435152536162637172737 
  92. DIAL Failure: 11:57:19: Interrupted.
  93.  Dial status: "9"
  94. ^C...
  95. Closing /dev/ttyS0...OK
  96. -----------------end of attempt--------------------------